From dcfb2251cb6ca38b377d46cf2debd2ae651f2309 Mon Sep 17 00:00:00 2001 From: Tom Gilder Date: Mon, 31 Jan 2005 20:35:47 +0000 Subject: [PATCH] Single quotes, just for the hell of it --- install-utils.inc | 32 ++++++++++++++++---------------- redirect.php | 8 ++++---- redirect.phtml | 2 +- wiki.phtml | 2 +- 4 files changed, 22 insertions(+), 22 deletions(-) diff --git a/install-utils.inc b/install-utils.inc index 105818d400..1cd85605c2 100644 --- a/install-utils.inc +++ b/install-utils.inc @@ -5,17 +5,17 @@ function install_version_checks() { # if PHP is globally configured to run through a gzip filter. @ob_implicit_flush( true ); - if( !function_exists( "version_compare" ) ) { + if( !function_exists( 'version_compare' ) ) { # version_compare was introduced in 4.1.0 die( "Your PHP version is much too old; 4.0.x will _not_ work. 4.3.2 or higher is recommended. ABORTING.\n" ); } - if( version_compare( phpversion(), "4.3.2" ) < 0 ) { + if( version_compare( phpversion(), '4.3.2' ) < 0 ) { echo "WARNING: PHP 4.3.2 or higher is recommended. Older versions from 4.1.x up may work but are not actively supported.\n\n"; } if (!extension_loaded('mysql')) { if (!dl('mysql.so')) { - print "Could not load MySQL driver! Please compile ". + print 'Could not load MySQL driver! Please compile '. "php --with-mysql or install the mysql.so module.\n"; exit; } @@ -50,18 +50,18 @@ function copydirectory( $source, $dest ) { $handle = opendir( $source ); while ( false !== ( $f = readdir( $handle ) ) ) { $fullname = "$source/$f"; - if ( $f{0} !="." && is_file( $fullname ) ) { + if ( $f{0} != '.' && is_file( $fullname ) ) { copyfile( $source, $f, $dest ); } } } -function readconsole( $prompt = "" ) { - if ( function_exists( "readline" ) ) { +function readconsole( $prompt = '' ) { + if ( function_exists( 'readline' ) ) { return readline( $prompt ); } else { print $prompt; - $fp = fopen( "php://stdin", "r" ); + $fp = fopen( 'php://stdin', 'r' ); $resp = trim( fgets( $fp, 1024 ) ); fclose( $fp ); return $resp; @@ -70,9 +70,9 @@ function readconsole( $prompt = "" ) { function replacevars( $ins ) { $varnames = array( - "wgDBserver", "wgDBname", "wgDBintlname", "wgDBuser", - "wgDBpassword", "wgDBsqluser", "wgDBsqlpassword", - "wgDBadminuser", "wgDBadminpassword", "wgDBprefix" + 'wgDBserver', 'wgDBname', 'wgDBintlname', 'wgDBuser', + 'wgDBpassword', 'wgDBsqluser', 'wgDBsqlpassword', + 'wgDBadminuser', 'wgDBadminpassword', 'wgDBprefix' ); foreach ( $varnames as $var ) { @@ -88,7 +88,7 @@ function replacevars( $ins ) { # Read and execute SQL commands from a file # function dbsource( $fname, $database = false ) { - $fp = fopen( $fname, "r" ); + $fp = fopen( $fname, 'r' ); if ( false === $fp ) { print "Could not open \"{$fname}\".\n"; exit(); @@ -102,14 +102,14 @@ function dbsource( $fname, $database = false ) { $sl = strlen( $line ) - 1; if ( $sl < 0 ) { continue; } - if ( "-" == $line{0} && "-" == $line{1} ) { continue; } + if ( '-' == $line{0} && '-' == $line{1} ) { continue; } - if ( ";" == $line{$sl} ) { + if ( ';' == $line{$sl} ) { $done = true; $line = substr( $line, 0, $sl ); } - if ( "" != $cmd ) { $cmd .= " "; } + if ( '' != $cmd ) { $cmd .= ' '; } $cmd .= $line; if ( $done ) { @@ -125,7 +125,7 @@ function dbsource( $fname, $database = false ) { exit(); } - $cmd = ""; + $cmd = ''; $done = false; } } @@ -134,7 +134,7 @@ function dbsource( $fname, $database = false ) { # Obsolete, use Database::fieldExists() function field_exists( $table, $field ) { - $fname = "Update script: field_exists"; + $fname = 'Update script: field_exists'; $db =& wfGetDB( DB_SLAVE ); $res = $db->query( "DESCRIBE $table", $fname ); $found = false; diff --git a/redirect.php b/redirect.php index f84d882170..23db327124 100644 --- a/redirect.php +++ b/redirect.php @@ -2,15 +2,15 @@ unset( $DP ); unset( $IP ); $wgCommandLineMode = false; -define( "MEDIAWIKI", true ); +define( 'MEDIAWIKI', true ); -require_once( "./LocalSettings.php" ); +require_once( './LocalSettings.php' ); global $wgArticlePath; -require_once( "includes/WebRequest.php" ); +require_once( 'includes/WebRequest.php' ); $wgRequest = new WebRequest(); -$page = $wgRequest->getVal( "wpDropdown" ); +$page = $wgRequest->getVal( 'wpDropdown' ); $url = str_replace( "$1", urlencode( $page ), $wgArticlePath ); diff --git a/redirect.phtml b/redirect.phtml index b739e0ed87..79e3cea668 100644 --- a/redirect.phtml +++ b/redirect.phtml @@ -1,4 +1,4 @@ \ No newline at end of file diff --git a/wiki.phtml b/wiki.phtml index c74d8ac085..5f6b019965 100644 --- a/wiki.phtml +++ b/wiki.phtml @@ -1,4 +1,4 @@ \ No newline at end of file -- 2.20.1